home *** CD-ROM | disk | FTP | other *** search
/ A Field Trip to the Sky (Demo) / Mac_Sunburst_AFieldTripToTheSky-Demo.iso / DIR / URO.DIR / 00442_Bitmap_miranda brown hue. gif < prev    next >
Text File  |  1996-03-27  |  822b  |  49 lines

  1. global gSSObject
  2. global gUranusObject
  3.  
  4. global gCurObject
  5. global gPrevObject
  6. global gChildList
  7. global gChildSpriteList
  8.  
  9.  
  10. on startMovie
  11.   -- do the one time initialization  
  12.   initializeAFTTS
  13.   
  14.   -- make the info box blank
  15.   doInitInfoBox
  16.   
  17.   -- set up the children objects, if necessary
  18.   
  19.   -- go back to the solar system
  20.   set gPrevObject to gSSObject
  21.   
  22.   -- tell the scripts that gCurObject is the solar system
  23.   set gCurObject to gUranusObject
  24.   
  25.   -- lastly setup the child list
  26.   set gChildList to [gUranusObject]
  27.   
  28.   -- and set the sprite numbers
  29.   set gChildSpriteList to [3]
  30.   
  31.   doInitGeneralButtons getProp(gCurObject,#id)
  32.   
  33.   guideStart()
  34. end
  35.  
  36. on stopMovie
  37.   guideStop()
  38. end
  39.  
  40.  
  41. -- ïïï generic idle
  42. on idle
  43.   --doCheckInfoBox()
  44.   doCheckForGoBackToSS()
  45. end
  46.  
  47.  
  48.  
  49.